home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / TTools / TToolsPalette / TBinderList.subproj / TBinderList.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  487 b   |  25 lines

  1. /* TBinderList.h
  2.  * Written By:  Thomas Burkholder
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  */
  8.  
  9. #import <objc/List.h>
  10.  
  11. @interface TBinderList:List
  12. {
  13.     id    dataSource;
  14. }
  15.  
  16. - init;
  17. - setDataSource:anObject;
  18. - dataSource;
  19. - updateInterface:sender;
  20. - updateDataSource:sender;
  21. - read:(NXTypedStream *)stream;
  22. - write:(NXTypedStream *)stream;
  23.  
  24. @end
  25.